home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PLayerOptions.h ----------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
- *
- * Description:
- *-------------------------------------------------------------------------
- */
- #ifndef __PLayerOptions__
- #define __PLayerOptions__
-
- class PLayerOptions
- {
-
- public:
-
- PLayerOptions(
- const char * sLayerName,
- const char * sNewName,
- short nShow,
- short nLock,
- short nColorIndex );
- PLayerOptions(
- const char * sLayerName,
- const char * sNewName,
- short nShow,
- short nLock,
- long lRed,
- long lGreen,
- long lBlue );
-
- private:
-
- PLayerOptions();
- };
-
- #endif
-
- // end of PLayerOptions.h
-